'use client'; import { ChannelDetail } from '@/types/channel'; import ChatSidebar from './ChatSidebar'; import Link from 'next/link'; import './style.scss'; type Props = { channel: ChannelDetail; }; export default function WatchView({ channel }: Props) { const embedUrl = channel.videoId ? `https://www.youtube.com/embed/${channel.videoId}?autoplay=1&mute=1` : null; return (
{/* 플레이어 */}
{embedUrl ? (